set work space and install dependent package.
setwd(getwd())
library(rpart) #classification and regression trees
library(rpart.plot)
df.test <- read.csv(file = "/media/eric/Data/IIT/CS422/cs422_hw/assignment4-Xingli-Li/adult-test.csv", encoding = "UTF-8")
df.train <- read.csv(file = "/media/eric/Data/IIT/CS422/cs422_hw/assignment4-Xingli-Li/adult-train.csv", encoding = "UTF-8")
NROW(df.test)
[1] 16281
NROW(df.train)
[1] 32560
typeof(df.test)
[1] "list"
col.names <- names(df.test)
print(col.names)
[1] "age" "workclass" "fnlwgt" "education" "education_num" "marital_status" "occupation" "relationship" "race" "sex"
[11] "capital_gain" "capital_loss" "hours_per_week" "native_country" "income"
for (col in col.names) {
if (sum(df.test[col] == "?") > 0) {
# The column contain '?' in test data set.
print(paste("the column '", col, "' in test data"))
}
if (sum(df.train[col] == "?") > 0) {
# The column contain '?' in train data set.
print(paste("the column '", col, "' in train data"))
df.train[-which(df.train[col] == '?'),]
}
}
[1] "the column ' workclass ' in test data"
[1] "the column ' workclass ' in train data"
[1] "the column ' occupation ' in test data"
[1] "the column ' occupation ' in train data"
[1] "the column ' native_country ' in test data"
[1] "the column ' native_country ' in train data"
df.test.cleaned <- df.test[-which(df.test['workclass'] == '?'
|
df.test['occupation'] == '?'
|
df.test['native_country'] == '?'),]
NROW(df.test.cleaned)
[1] 15060
df.train.cleaned <- df.train[-which(df.train['workclass'] == '?'
|
df.train['occupation'] == '?'
|
df.train['native_country'] == '?'),]
NROW(df.train.cleaned)
[1] 30161
df.test.cleaned <- data.frame(df.test.cleaned[,1:14],
income=ifelse(df.test.cleaned$income=="<=50K",0, 1))
df.train.cleaned <- data.frame(df.train.cleaned[,1:14],
income=ifelse(df.train.cleaned$income=="<=50K",0, 1))
my_tree <- rpart(income ~ ., data = df.train.cleaned, method="class")
printcp(my_tree)
Classification tree:
rpart(formula = income ~ ., data = df.train.cleaned, method = "class")
Variables actually used in tree construction:
[1] capital_gain education relationship
Root node error: 7508/30161 = 0.24893
n= 30161
CP nsplit rel error xerror xstd
1 0.129995 0 1.00000 1.00000 0.0100018
2 0.064198 2 0.74001 0.74001 0.0089670
3 0.037294 3 0.67581 0.67581 0.0086527
4 0.010000 4 0.63852 0.63852 0.0084574
summary(my_tree)
Call:
rpart(formula = income ~ ., data = df.train.cleaned, method = "class")
n= 30161
CP nsplit rel error xerror xstd
1 0.12999467 0 1.0000000 1.0000000 0.010001793
2 0.06419819 2 0.7400107 0.7400107 0.008966969
3 0.03729355 3 0.6758125 0.6758125 0.008652716
4 0.01000000 4 0.6385189 0.6385189 0.008457392
Variable importance
relationship marital_status capital_gain education education_num sex occupation age hours_per_week
24 23 10 9 9 8 7 5 3
Node number 1: 30161 observations, complexity param=0.1299947
predicted class=0 expected loss=0.2489307 P(node) =1
class counts: 22653 7508
probabilities: 0.751 0.249
left son=2 (16292 obs) right son=3 (13869 obs)
Primary splits:
relationship splits as RLLLLR, improve=2277.164, (0 missing)
marital_status splits as LRRLLLL, improve=2244.398, (0 missing)
capital_gain < 5119 to the left, improve=1540.825, (0 missing)
education splits as LLLLLLLLLRRLRLRL, improve=1193.769, (0 missing)
education_num < 12.5 to the left, improve=1193.769, (0 missing)
Surrogate splits:
marital_status splits as LRRLLLL, agree=0.993, adj=0.984, (0 split)
sex splits as LR, agree=0.691, adj=0.328, (0 split)
age < 33.5 to the left, agree=0.645, adj=0.229, (0 split)
occupation splits as LLRRRLLLLRRLLR, agree=0.620, adj=0.175, (0 split)
hours_per_week < 43.5 to the left, agree=0.604, adj=0.138, (0 split)
Node number 2: 16292 observations, complexity param=0.03729355
predicted class=0 expected loss=0.06966609 P(node) =0.5401678
class counts: 15157 1135
probabilities: 0.930 0.070
left son=4 (15992 obs) right son=5 (300 obs)
Primary splits:
capital_gain < 7073.5 to the left, improve=491.8224, (0 missing)
education splits as LLLLLLLLLLRLRLRL, improve=142.9961, (0 missing)
education_num < 13.5 to the left, improve=142.9961, (0 missing)
occupation splits as LLLRLLLLLRRLLL, improve=117.0150, (0 missing)
hours_per_week < 42.5 to the left, improve=107.9941, (0 missing)
Node number 3: 13869 observations, complexity param=0.1299947
predicted class=0 expected loss=0.459514 P(node) =0.4598322
class counts: 7496 6373
probabilities: 0.540 0.460
left son=6 (9719 obs) right son=7 (4150 obs)
Primary splits:
education splits as LLLLLLLLLRRLRLRL, improve=900.0575, (0 missing)
education_num < 12.5 to the left, improve=900.0575, (0 missing)
occupation splits as LRLRLLLLLRRRRL, improve=841.3999, (0 missing)
capital_gain < 5095.5 to the left, improve=698.6333, (0 missing)
capital_loss < 1782.5 to the left, improve=240.6928, (0 missing)
Surrogate splits:
education_num < 12.5 to the left, agree=1.000, adj=1.000, (0 split)
occupation splits as LLLRLLLLLRLLLL, agree=0.792, adj=0.306, (0 split)
capital_gain < 7493 to the left, agree=0.717, adj=0.054, (0 split)
native_country splits as LLRLLLLLRRLLLLRLLRRLLLRLLLLLRLLLLRRLLLLL, agree=0.709, adj=0.027, (0 split)
capital_loss < 1894.5 to the left, agree=0.706, adj=0.018, (0 split)
Node number 4: 15992 observations
predicted class=0 expected loss=0.05283892 P(node) =0.5302211
class counts: 15147 845
probabilities: 0.947 0.053
Node number 5: 300 observations
predicted class=1 expected loss=0.03333333 P(node) =0.00994662
class counts: 10 290
probabilities: 0.033 0.967
Node number 6: 9719 observations, complexity param=0.06419819
predicted class=0 expected loss=0.3418047 P(node) =0.3222373
class counts: 6397 3322
probabilities: 0.658 0.342
left son=12 (9219 obs) right son=13 (500 obs)
Primary splits:
capital_gain < 5095.5 to the left, improve=432.0786, (0 missing)
occupation splits as RLLRLLLLLRRRRL, improve=230.8277, (0 missing)
education splits as LLLLLLLRR--R-L-R, improve=164.3625, (0 missing)
education_num < 8.5 to the left, improve=164.3625, (0 missing)
age < 35.5 to the left, improve=131.1760, (0 missing)
Node number 7: 4150 observations
predicted class=1 expected loss=0.2648193 P(node) =0.1375949
class counts: 1099 3051
probabilities: 0.265 0.735
Node number 12: 9219 observations
predicted class=0 expected loss=0.3070832 P(node) =0.3056596
class counts: 6388 2831
probabilities: 0.693 0.307
Node number 13: 500 observations
predicted class=1 expected loss=0.018 P(node) =0.0165777
class counts: 9 491
probabilities: 0.018 0.982
plotcp(my_tree)
# Drawing decision classification tree
rpart.plot(my_tree, extra=104, fallen.leaves=T, type=4,
main="Decision Tree")
library(partykit) #treeplots
# plot method of the partykit package.
plot(as.party(my_tree))
"capital_gain education relationship"
The first split is done on "relationship" predictor.
the predicted class of the first node is "<=50k".
the distribution of observations at first node is:
observations: <=50K >50K
class counts: 22653 7508
probabilities: 0.751 0.249
#install.package(caret)
library(caret)
X <- df.test.cleaned[,1:14]
y <- df.test.cleaned$income
# predict the test dataset
y_hat <- predict(my_tree, newdata = X,type = "class")
confusMatrix <-table(y, y_hat)
print(confusMatrix)
y_hat
y 0 1
0 10772 588
1 1837 1863
sprintf(paste("recall: ",round(recall(confusMatrix), digit = 3)))
[1] "recall: 0.854"
print(paste("precision:",round(precision(confusMatrix), digit = 3)))
[1] "precision: 0.948"
print(paste("F1 value:",round(F_meas(confusMatrix), digit = 3)))
[1] "F1 value: 0.899"
print(paste("sensitivity:",round(sensitivity(confusMatrix), digit = 3)))
[1] "sensitivity: 0.854"
print(paste("specificity:",round(specificity(confusMatrix), digit = 3)))
[1] "specificity: 0.76"
balanced_accuracy = mean( c(sensitivity(confusMatrix),specificity(confusMatrix)))
print(paste("balanced_accuracy:",round(balanced_accuracy, digit = 3) ))
[1] "balanced_accuracy: 0.807"
# Balanced error rate = 1.0 – balanced accuracy
balanced_error_rate <- 1.0 - balanced_accuracy
print(paste("balanced error rate:",round(balanced_error_rate,digits = 3)))
[1] "balanced error rate: 0.193"
# what?
# what? sensitivity ,specificity
# sensitivity: The true positive rate is the sensitivity
# specificity: The false positive rate is 1-specificity
pre <- predict(my_tree, newdata = X,type = "class")
# 将预测概率prob和实际结果y放在一个数据框中
data <- data.frame(prob=pre,obs=y)
# 按预测概率从低到高排序
data <- data[order(data$prob),]
n <- nrow(data)
tpr <- fpr <- rep(0,n)
# 根据不同的临界值threshold来计算TPR和FPR,之后绘制成图
for (i in 1:n) {
threshold <- data$prob[i]
tp <- sum(data$prob > threshold & data$obs == 1)
fp <- sum(data$prob > threshold & data$obs == 0)
tn <- sum(data$prob < threshold & data$obs == 0)
fn <- sum(data$prob < threshold & data$obs == 1)
tpr[i] <- tp/(tp+fn) # 真正率
fpr[i] <- fp/(tn+fp) # 假正率
}
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘>’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
Warning in Ops.factor(data$prob, threshold) :
‘<’ not meaningful for factors
plot(fpr,tpr,type='l')
Warning in min(x) : min里所有的参数都不存在; 回覆Inf
Warning in max(x) : max里所有的参数都不存在;回覆-Inf
Warning in min(x) : min里所有的参数都不存在; 回覆Inf
Warning in max(x) : max里所有的参数都不存在;回覆-Inf
Error in plot.window(...) : 'xlim'值不能是无限的
# 复杂度分析
set.seed(1122)
sample()
# Training and fitting, confusematrix